home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / systems / web2c / web2c.cache.help < prev    next >
Internet Message Format  |  1994-12-18  |  1KB

  1. From tim@maths.tcd.ie Sun Dec 18 11:38:40 1994
  2. Subject: Re: kpathsea 2.5, dvipsk 5.58e, xdvik 18e, dviljk 2.4
  3. To: "K. Berry" <kb@cs.umb.edu>
  4. Date: Sun, 18 Dec 1994 16:38:32 (GMT)
  5. From: Timothy Murphy <tim@maths.tcd.ie>
  6.  
  7.  
  8. Another -- not serious -- complaint:
  9. make distclean doesn't remove config.cache .
  10. This confused me recently as we have several machine types
  11. sharing the same source directory.
  12.  
  13. Also, John Interrante's patch doesn't quite work with kpathsea-2.5,
  14. because --cache-file is not defined in web2c/configure.
  15.  
  16. The following trivial patch allows it to work:
  17.  
  18. *** web2c/configure.patched    Fri Dec 16 18:40:44 1994
  19. --- web2c/configure    Fri Dec 16 19:29:40 1994
  20. ***************
  21. *** 86,91 ****
  22. --- 86,98 ----
  23.     -build=* | --build=* | --buil=* | --bui=* | --bu=* | --b=*)
  24.       build="$ac_optarg" ;;
  25.   
  26. +   -cache-file | --cache-file | --cache-fil | --cache-fi \
  27. +   | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
  28. +     ac_prev=cache_file ;;
  29. +   -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
  30. +   | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
  31. +     cache_file="$ac_optarg" ;;
  32.     -disable-* | --disable-*)
  33.       ac_feature=`echo $ac_option|sed -e 's/-*disable-//'`
  34.       # Reject names that aren't valid shell variable names.
  35.  
  36. Tim
  37.  
  38.  
  39.